home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Examples / IndexingKit / Ledger / MoneyWell.h < prev    next >
Encoding:
Text File  |  1993-01-25  |  748 b   |  28 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface MoneyWell:View
  5. {
  6.     id                  valueTF;
  7.     id                  ledgerController;
  8.     NXImage            *image;
  9.     BOOL                sel; 
  10.     BOOL                dropping;
  11.     NXPoint             imagePoint;
  12. }
  13.  
  14. - initFrame:(const NXRect *)frameRect;
  15. - (BOOL)acceptsFirstResponder;
  16. - (BOOL)acceptsFirstMouse;
  17. - free;
  18. - drawSelf:(const NXRect *)rects :(int)rectCount;
  19. - mouseDown:(NXEvent *)e;
  20. - transaction:requestor;
  21. - (NXDragOperation) draggingSourceOperationMaskForLocal:(BOOL)flag;
  22. - (NXDragOperation) draggingEntered:(id <NXDraggingInfo >)sender;
  23. - declareTypesFor:anObject inPasteboard:aPasteboard;
  24. - draggingExited:sender;
  25. - (BOOL)performDragOperation:(id <NXDraggingInfo >)sender;
  26.  
  27. @end
  28.